home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Meeting Pearls 2
/
Meeting Pearls Vol. II (1995)(GTI - Schatztruhe)[!].iso
/
Pearls
/
dev
/
GUI
/
Triton
/
Programmer
/
gcc
/
source
/
tr_firstoccurance.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-07-14
|
809b
|
29 lines
/*
* Triton - The object oriented GUI creation system for the Amiga
* Written by Stefan Zeiger in 1993-1994
*
* (c) 1993-1994 by Stefan Zeiger
* You are hereby allowed to use this source or parts of it for
* creating programs for AmigaOS which use the Triton GUI creation
* system. All other rights reserved.
*
* Triton linkable library code for GCC - (c) 1994 by Gunther Nikl
*/
#include "triton.h"
extern struct Library *TritonBase;
LONG TR_FirstOccurance(UBYTE ch, STRPTR str)
{
register LONG _res __asm("d0");
register struct Library *a6 __asm("a6") = TritonBase;
register STRPTR a0 __asm("a0") = str;
register UBYTE d0 __asm("d0") = ch;
__asm __volatile ("jsr a6@(-0x2a)"
: "=r" (_res)
: "r" (a6), "r" (a0), "r" (d0)
: "a0","a1","d0","d1", "memory");
return _res;
}